Action hook 'install_plugins_{$tab}'

in WP Core File wp-admin/plugin-install.php at line 200

Description

Fires after the plugins list table in each tab of the Install Plugins screen. The dynamic portion of the hook name, `$tab`, allows for targeting individual tabs. Possible hook names include: - `install_plugins_beta` - `install_plugins_favorites` - `install_plugins_featured` - `install_plugins_plugin-information` - `install_plugins_popular` - `install_plugins_recommended` - `install_plugins_search` - `install_plugins_upload`

Occurrences

Filename Line Number
wp-admin/plugin-install.php 200

Parameters

Type Name Description
int $paged The current page number of the plugins list table.

PHP Doc

/**
 * Fires after the plugins list table in each tab of the Install Plugins screen.
 *
 * The dynamic portion of the hook name, `$tab`, allows for targeting
 * individual tabs.
 *
 * Possible hook names include:
 *
 *  - `install_plugins_beta`
 *  - `install_plugins_favorites`
 *  - `install_plugins_featured`
 *  - `install_plugins_plugin-information`
 *  - `install_plugins_popular`
 *  - `install_plugins_recommended`
 *  - `install_plugins_search`
 *  - `install_plugins_upload`
 *
 * @since 2.7.0
 *
 * @param int $paged The current page number of the plugins list table.
 */